Fox's Git Mirrors
exclusive_reduce.hh 350ec5903765c64ea6c4578c7e0ac684179b3a59 (350ec590) Text, 490 B
/*
Reduce N times while excluding ith input element
Copyright 2018 Ahmet Inan <inan@aicodix.de>
*/
#pragma once
namespace CODE {
template <typename TYPE, typename OPERATOR>
void exclusive_reduce(const TYPE *in, TYPE *out, int N, OPERATOR op)
{
TYPE pre = in[0];
for (int i = 1; i < N-1; ++i) {
out[i] = pre;
pre = op(pre, in[i]);
}
out[N-1] = pre;
TYPE suf = in[N-1];
for (int i = N-2; i > 0; --i) {
out[i] = op(out[i], suf);
suf = op(suf, in[i]);
}
out[0] = suf;
}
}
Served by rngit 1.5.2 - Generated in 0.02s